home *** CD-ROM | disk | FTP | other *** search
/ MacWorld 1999 January - Disc 2 / Macworld (1999-01) (Disk 2).dmg / Serious Demos / Symbolic Composer 4.2 / Environment / System / DEF / Access / controller-of < prev    next >
Text File  |  1998-10-23  |  764b  |  21 lines

  1. controller-of instrument
  2.  
  3. Returns a class property of the instrument defined with def-controller. Can be used for accessing already made definition of an instrument. controller-of differs from other -of functions since the controller information is represented differently.
  4.  
  5. (def-controller gm-controllers
  6.    (piano 
  7.     main-volume (list '(127)
  8.                       (vector-round 50 100 (gen-sin 1 0.3 16)))
  9.       modulation-wheel '((4) (5 6))
  10.    )
  11.    (sax
  12.       main-volume '((4) (5 6))
  13.       modulation-wheel (list '(65 70 80 90) 
  14.                              (vector-round 50 100
  15.                                            (gen-sin 1 0.3 32 180)))
  16.    )
  17. )
  18.  
  19. (controller-of piano)
  20. --> (7 ((127) (75 85 93 98 100 98 93 85 75 65 57 52 50 52 57 65)) 1 ((4) (5 6)))
  21.